LiquidTechnologies.XmlObjects Namespace / BigDecimal Structure / BigDecimal Constructor / BigDecimal Constructor(Double,Nullable<DoubleConversionRules>)
The System.Double value to be used to initialize the BigDecimal
The rule to use to when converting the double to a BigDecimal. If null then the default (DoubleConversionRule) is used.

In This Topic
    BigDecimal Constructor(Double,Nullable<DoubleConversionRules>)
    In This Topic
    Cast Constructor, creates a new BigDecimal from an System.Double
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal mantissa As System.Double, _
       Optional ByVal doubleConversionRule As System.Nullable(Of BigDecimal.DoubleConversionRules) _
    )
    public BigDecimal( 
       System.double mantissa,
       System.Nullable<BigDecimal.DoubleConversionRules> doubleConversionRule
    )

    Parameters

    mantissa
    The System.Double value to be used to initialize the BigDecimal
    doubleConversionRule
    The rule to use to when converting the double to a BigDecimal. If null then the default (DoubleConversionRule) is used.
    Requirements

    Target Platforms: Windows 10, Windows 8, Windows 7, Windows Vista, Windows Server 2016, Windows Server 2012, Windows Server 2008. Please ensure you have the latest Service Pack for your operating system installed.

    See Also